home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / sleep.c,v < prev    next >
Text File  |  1990-09-05  |  5KB  |  225 lines

  1. head     1.4;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.4
  10. date     90.09.05.18.56.41;  author rab;  state Exp;
  11. branches ;
  12. next     1.3;
  13.  
  14. 1.3
  15. date     88.12.31.12.26.19;  author ouster;  state Exp;
  16. branches ;
  17. next     1.2;
  18.  
  19. 1.2
  20. date     88.06.21.17.25.15;  author ouster;  state Exp;
  21. branches ;
  22. next     1.1;
  23.  
  24. 1.1
  25. date     88.06.19.14.32.02;  author ouster;  state Exp;
  26. branches ;
  27. next     ;
  28.  
  29.  
  30. desc
  31. @@
  32.  
  33.  
  34. 1.4
  35. log
  36. @Replaced old sleep with bsd sleep.
  37. @
  38. text
  39. @/* 
  40.  * sleep.c --
  41.  *
  42.  *    Source for "sleep" library procedure.
  43.  *
  44.  * Copyright 1986, 1989 Regents of the University of California
  45.  * Permission to use, copy, modify, and distribute this
  46.  * software and its documentation for any purpose and without
  47.  * fee is hereby granted, provided that the above copyright
  48.  * notice appear in all copies.  The University of California
  49.  * makes no representations about the suitability of this
  50.  * software for any purpose.  It is provided "as is" without
  51.  * express or implied warranty.
  52.  */
  53.  
  54. #ifndef lint
  55. static char rcsid[] = "$Header: /sprite/src/lib/c/etc/RCS/sleep.c,v 1.3 88/12/31 12:26:19 ouster Exp Locker: rab $ SPRITE (Berkeley)";
  56. #endif not lint
  57.  
  58. #include <sys/time.h>
  59. #include <signal.h>
  60.  
  61. #define setvec(vec, a) \
  62.         vec.sv_handler = a; vec.sv_mask = vec.sv_onstack = 0
  63.  
  64. static int ringring;
  65. static void sleepx();
  66.  
  67.  
  68. /*
  69.  *----------------------------------------------------------------------
  70.  *
  71.  * sleep --
  72.  *
  73.  *    Delay process for a given number of seconds.
  74.  *
  75.  * Results:
  76.  *    Always returns 0.
  77.  *
  78.  * Side effects:
  79.  *    None.
  80.  *
  81.  *----------------------------------------------------------------------
  82.  */
  83. int
  84. sleep(n)
  85.         unsigned n;
  86. {
  87.         long omask;
  88.         struct itimerval itv, oitv;
  89.         register struct itimerval *itp = &itv;
  90.         struct sigvec vec, ovec;
  91.  
  92.         if (n == 0)
  93.                 return;
  94.         timerclear(&itp->it_interval);
  95.         timerclear(&itp->it_value);
  96.         if (setitimer(ITIMER_REAL, itp, &oitv) < 0)
  97.                 return;
  98.         itp->it_value.tv_sec = n;
  99.         if (timerisset(&oitv.it_value)) {
  100.                 if (timercmp(&oitv.it_value, &itp->it_value, >))
  101.                         oitv.it_value.tv_sec -= itp->it_value.tv_sec;
  102.                 else {
  103.                         itp->it_value = oitv.it_value;
  104.                         /*
  105.                          * This is a hack, but we must have time to
  106.                          * return from the setitimer after the alarm
  107.                          * or else it'll be restarted.  And, anyway,
  108.                          * sleep never did anything more than this before.
  109.                          */
  110.                         oitv.it_value.tv_sec = 1;
  111.                         oitv.it_value.tv_usec = 0;
  112.                 }
  113.         }
  114.         setvec(vec, sleepx);
  115.         (void) sigvec(SIGALRM, &vec, &ovec);
  116.         omask = sigblock(sigmask(SIGALRM));
  117.         ringring = 0;
  118.         (void) setitimer(ITIMER_REAL, itp, (struct itimerval *)0);
  119.         while (!ringring)
  120.                 sigpause(omask &~ sigmask(SIGALRM));
  121.         (void) sigvec(SIGALRM, &ovec, (struct sigvec *)0);
  122.         (void) sigsetmask(omask);
  123.         (void) setitimer(ITIMER_REAL, &oitv, (struct itimerval *)0);
  124. }
  125.  
  126. static void
  127. sleepx()
  128. {
  129.  
  130.         ringring = 1;
  131. }
  132.  
  133. #ifdef WRONG
  134. int
  135. sleep(seconds)
  136.     int seconds;
  137. {
  138.     struct timeval tv;
  139.  
  140.     tv.tv_sec = seconds;
  141.     tv.tv_usec = 0;
  142.     (void) select(0, (int *) 0, (int *) 0, (int *) 0, &tv);
  143.     return 0;
  144. }
  145. #endif
  146.  
  147. @
  148.  
  149.  
  150. 1.3
  151. log
  152. @Simplify so as not to need compatibility routines or Sprite kernel calls.
  153. @
  154. text
  155. @d17 1
  156. a17 1
  157. static char rcsid[] = "$Header: sleep.c,v 1.2 88/06/21 17:25:15 ouster Exp $ SPRITE (Berkeley)";
  158. d21 8
  159. d45 46
  160. d92 4
  161. d107 2
  162. @
  163.  
  164.  
  165. 1.2
  166. log
  167. @Various changes to make code compile under new library.
  168. @
  169. text
  170. @d2 1
  171. a2 1
  172.  * kill.c --
  173. d4 1
  174. a4 1
  175.  *    Procedure to map from Unix sleep system call to Sprite Sync_WaitTime.
  176. d6 8
  177. a13 2
  178.  * Copyright 1986 Regents of the University of California
  179.  * All rights reserved.
  180. d17 1
  181. a17 1
  182. static char rcsid[] = "$Header: sleep.c,v 1.1 88/06/19 14:32:02 ouster Exp $ SPRITE (Berkeley)";
  183. d20 1
  184. a20 7
  185. #include <sprite.h>
  186. #include <spriteTime.h>
  187. #include <sync.h>
  188.  
  189. #include "compatInt.h"
  190. #include <errno.h>
  191.  
  192. d27 1
  193. a27 2
  194.  *    Procedure to map from Unix sleep library call to Sprite 
  195.  *    Sync_WaitTime.
  196. d30 1
  197. a30 1
  198.  *    UNIX_SUCCESS is returned.
  199. d42 1
  200. a42 1
  201.     Time     timeToWait;
  202. d44 4
  203. a47 4
  204.     timeToWait.seconds = seconds;
  205.     timeToWait.microseconds = 0;
  206.     (void) Sync_WaitTime(timeToWait);
  207.     return(UNIX_SUCCESS);
  208. @
  209.  
  210.  
  211. 1.1
  212. log
  213. @Initial revision
  214. @
  215. text
  216. @d11 1
  217. a11 1
  218. static char rcsid[] = "$Header: sigsetmask.c,v 1.1 86/04/17 15:21:06 douglis Exp $ SPRITE (Berkeley)";
  219. d14 3
  220. a16 3
  221. #include "sprite.h"
  222. #include "/sprite/lib/include/time.h"
  223. #include "sync.h"
  224. @
  225.